layout.tsx 240 B

1234567891011121314
  1. export default function SingleLayout({
  2. children
  3. }: {
  4. children: React.ReactNode,
  5. }) {
  6. return (
  7. <section className="section">
  8. <div className="container container-narrow">
  9. {children}
  10. </div>
  11. </section>
  12. );
  13. }